home *** CD-ROM | disk | FTP | other *** search
/ START Magazine / START VOL 4 NO 10.st / info_src.arc / DRAW.PAS next >
Encoding:
Pascal/Delphi Source File  |  1990-02-01  |  11.9 KB  |  369 lines

  1. {InfoBaseST by James W. Maki (c) Copyright 1990 by Antic Publishing, Inc.}
  2. {$M+}
  3. {$E+}
  4.  
  5. Program Draw_Module;
  6.  
  7.       {$I A:GEMSUBS.PAS }
  8.       {$I A:AUXSUBS.PAS }
  9.  
  10.  Const
  11.       {$I B:MOD_CONS.PAS }
  12.  
  13.  Type
  14.       {$I B:MOD_TYPE.PAS }
  15.  
  16.  Var
  17.       {$I B:MOD_VAR.PAS }
  18.  
  19. {   **************************  External ******************************   }
  20.  
  21.   procedure GetStr(CurRec : DataPtr ; Var DisplayStr : Str255 ;
  22.                    Start, Size : short_integer ) ;
  23.      External ;
  24.  
  25.   procedure NewCursor(ScrMode : short_integer) ;
  26.      External ;
  27.  
  28. {   *************************  Procedures *****************************   }
  29.  
  30. { ************************************************************************
  31.      Erase_Frame will erase an input frame and contents by drawing a 
  32.      rectangle of color white with width w and height of 11 at 
  33.      location x and y.
  34. ************************************************************************* }
  35.   procedure Erase_Frame( x, y, w : short_integer ) ;
  36.  
  37.      begin                       { 19 }
  38.        Paint_Rect(x - 1, y - 1, w + 11, 12 * Resolution);
  39.      end;
  40.  
  41. { *************************************************************************
  42.      EraseARec will erase a Input Label and Input rectangle for
  43.      the ScrPtr record CurRec.  This is used for the modify procedure
  44.      of the design procedure to erase the record before the modified
  45.      record is drawn.
  46. ************************************************************************* }
  47.   procedure EraseARec( CurRec : ScrPtr ) ;
  48.  
  49.      begin
  50.        Hide_Mouse ;
  51.        Erase_Frame(x +  CurRec^.X * 8, 
  52.                    y + (CurRec^.Y - 1) * Spacing + (4 * Resolution), 
  53.                    (Length(CurRec^.LabelStr) + 2) * 8 ) ;
  54.        Erase_Frame(x + (CurRec^.X + Length(CurRec^.LabelStr) + 2) * 8 + 4, 
  55.                    y + (CurRec^.Y - 1) * Spacing + (4 * Resolution), 
  56.                    CurRec^.Size * 8 ) ;
  57.        if CurRec^.DataType = 'H' then
  58.           EraseARec(CurRec^.Next) ;
  59.        Show_Mouse ;
  60.      end ;
  61.  
  62. { *************************************************************************
  63.      Paint_Frame draws a white rectangle at location x,y and width w.  The
  64.      height of the rectangle is always 10.
  65. ************************************************************************* }
  66.   procedure Paint_Frame( x, y, w : short_integer ) ;
  67.  
  68.      begin
  69.        if Resolution = 1 then
  70.           begin             { 16 / 18 }
  71.             Paint_Rect(x, y, w +  8, 10) ;
  72.             Frame_Rect(x, y, w + 10, 11) ;
  73.           end
  74.        else
  75.           begin              { 16 / 16 / 18 }
  76.             Paint_Rect(x, y + 1, w +  8, 20) ;
  77.             Frame_Rect(x, y + 1, w +  8, 20) ;
  78.             Frame_Rect(x - 1, y, w + 10, 22) ;
  79.           end ;
  80.      end ;
  81.  
  82. { *************************************************************************
  83.      DrawRecord displays the information about the current record
  84.      to the screen.  The labels are not drawn.
  85. ************************************************************************* }
  86.   procedure DrawRecord(CurRec : DataPtr) ;
  87.  
  88.     var
  89.        ScrRec  : ScrPtr ;
  90.        DisplayStr : Str255 ;
  91.  
  92.       begin
  93.        Hide_Mouse ;
  94.        ScrRec := S_FirstRec[ScrNum] ;
  95.        While ScrRec <> nil do
  96.          begin
  97.            if CurRec = nil then
  98.               DisplayStr := ''
  99.            else
  100.               GetStr(CurRec, DisplayStr, ScrRec^.Offset, ScrRec^.Size ) ;
  101.  
  102.            Paint_Frame(x + (ScrRec^.X + Length(ScrRec^.LabelStr) + 2) * 8 + 4, 
  103.                        y + (ScrRec^.Y - 1) * Spacing + (4 * Resolution), 
  104.                        ScrRec^.Size * 8 ) ;
  105.            Draw_String(x + ScrRec^.XPos * 8,
  106.                        y + ScrRec^.YPos * Spacing, DisplayStr) ;
  107.            ScrRec := ScrRec^.Next ;
  108.          end ;
  109.       Show_Mouse ;
  110.      end ;
  111.  
  112. { *************************************************************************
  113.      ClearRecord clears all fields of the current record screen.
  114. ************************************************************************* }
  115.   procedure ClearRecord(CurRec : DataPtr) ;
  116.  
  117.     var
  118.        ScrRec  : ScrPtr ;
  119.        DisplayStr : Str255 ;
  120.         
  121.      begin
  122.        Hide_Mouse ;
  123.        ScrRec := S_FirstRec[ScrNum] ;
  124.        While ScrRec <> nil do
  125.          begin
  126.            Paint_Frame(x + (ScrRec^.X + Length(ScrRec^.LabelStr) + 2) * 8 + 4, 
  127.                        y + (ScrRec^.Y - 1) * Spacing + (4 * Resolution), 
  128.                        ScrRec^.Size * 8 ) ;
  129.            if ScrRec^.DataType = 'F' then
  130.               Draw_String(x + ScrRec^.XPos * 8,
  131.                           y + ScrRec^.YPos * Spacing, '$') ;
  132.  
  133.            ScrRec := ScrRec^.Next ;
  134.          end ;
  135.        S_CurrentRec[ScrNum] := S_FirstRec[ScrNum] ;
  136.        S_CurrentRec[ScrNum]^.XInPos := 0 ;
  137.        XCur := S_CurrentRec[ScrNum]^.XPos ;
  138.        YCur := S_CurrentRec[ScrNum]^.YPos ;
  139.        Show_Mouse ;
  140.      end ;
  141.  
  142.  
  143. { *************************************************************************
  144.      DrawDZ_In will draw the Design screen for output.
  145. ************************************************************************* }
  146.   procedure DrawDZ_In ;
  147.  
  148.     var
  149.        Spacing,
  150.        i, j    : short_integer ;
  151.        ScrRec  : ScrPtr ;
  152.        DataRec : DataPtr ;
  153.  
  154.      begin
  155.        Hide_Mouse ;
  156.        Spacing := 12 * Resolution ;
  157.        Paint_Color(1) ;
  158.        Paint_Style(6) ; 
  159.        Paint_Rect(x, y, w, h DIV 2 - 21 * Resolution);
  160.        Frame_Rect(x, y, w, h DIV 2 - 21 * Resolution);
  161.        Frame_Rect(x, y, w, h DIV 2 + 1 - 21 * Resolution);
  162.        Paint_Color(0) ;
  163.        Paint_Style(1) ;
  164.        ScrRec := S_FirstRec[ScrNum] ;
  165.        for i := 1 to PL_Offset do
  166.            ScrRec := ScrRec^.Next ;
  167.  
  168.        i := 0 ;
  169.        j := 0 ;
  170.        While ScrRec <> nil do
  171.           begin
  172.             Paint_Frame( x + 70 + j * 280,
  173.                          y + i * Spacing + 2 * Resolution, 8 ) ;
  174.             Draw_String(x + 74 + j * 280, y + i * Spacing + 10 * Resolution,
  175.                         chr(i + j * 5 + PL_Offset + $41)) ;
  176.  
  177.             Paint_Frame( x + 100 + j * 280,
  178.                          y + i * Spacing + 2 * Resolution, 160 ) ;
  179.             if ScrRec^.LabelStr <> '' then
  180.                Draw_String(x + 104 + j * 280, 
  181.                       y + i * Spacing + 10 * Resolution, ScrRec^.LabelStr) ;
  182.             ScrRec := ScrRec^.Next ;
  183.             i := i + 1 ;
  184.             if i > 4 then
  185.                begin
  186.                  i := 0 ;
  187.                  j := j + 1 ;
  188.                  if j > 1 then
  189.                     ScrRec := nil ;
  190.                end ;
  191.           end ;
  192.        Show_Mouse ;
  193.      end ;
  194.  
  195. { *************************************************************************
  196.      DrawDZ_Out will draw the Design screen for output.
  197. ************************************************************************* }
  198.   procedure DrawDZ_Out ;
  199.  
  200.     var
  201.        i, j,
  202.        Start   : short_integer ;
  203.        ScrRec  : ScrPtr ;
  204.        DataRec : DataPtr ;
  205.        CheckChar  : char ;
  206.  
  207.      begin
  208.        Hide_Mouse ;
  209.        Paint_Rect(x, y + h DIV 2 - 21 * Resolution, w, h DIV 2 + 20 * Resolution);
  210.        i := 1 ;
  211.        ScrRec := S_FirstRec[Report] ;
  212.        DataRec := D_FirstRec[Report] ;
  213.        While ScrRec <> nil do
  214.           begin
  215.             GetStr(DataRec, FormatStr, ScrRec^.Offset, ScrRec^.Size ) ;
  216.  
  217.             if RW_Offset = 0 then
  218.                Start := 1 
  219.             else 
  220.                Start := RW_Offset ;
  221.  
  222.             for j := Start to RW_Offset + 78 do
  223.                 begin
  224.                   CheckChar := FormatStr[j] ;
  225.                   if ord(CheckChar) > $7F then
  226.                      FormatStr[j] := chr(ord(CheckChar) - $80 + $41) ;
  227.                 end ;
  228.  
  229.             if RW_Offset > 0 then
  230.                begin
  231.                  Delete(FormatStr, 1, 56) ;
  232.                  Draw_String(x, y + (7 + i) * Spacing - 4 * Resolution, 
  233.                  FormatStr) ;
  234.                end
  235.             else
  236.                begin
  237.                  Delete(FormatStr, 78, 54) ;
  238.                  Draw_String(x + 8, y + (7 + i) * Spacing - 4 * Resolution,
  239.                              FormatStr) ;
  240.                end ;
  241.                
  242.             ScrRec := ScrRec^.Next ;
  243.             i := i + 1 ;
  244.           end ;
  245.  
  246.        Case RepLine of
  247.          1 : begin
  248.                i := 3 ;
  249.                j := 4 ;
  250.              end ;
  251.          2 : begin
  252.                i := 3 ;
  253.                j := 5 ;
  254.              end ;
  255.          3 : begin
  256.                i := 3 ;
  257.                j := 6 ;
  258.              end ;
  259.          4 : begin
  260.                i := 2 ;
  261.                j := 6 ;
  262.              end ;
  263.  
  264.        end ;
  265.        if P_Mode = 2 then
  266.           if Resolution = 2 then
  267.              begin
  268.                Line(x,     y + h DIV 2 + i * Spacing + 6, 
  269.                     x + w, y + h DIV 2 + i * Spacing + 6) ;
  270.                Line(x,     y + h DIV 2 + j * Spacing + 6, 
  271.                     x + w, y + h DIV 2 + j * Spacing + 6) ;
  272.              end
  273.           else
  274.              begin
  275.                Line(x,     y + h DIV 2 + i * Spacing + 4, 
  276.                     x + w, y + h DIV 2 + i * Spacing + 4) ;
  277.                Line(x,     y + h DIV 2 + j * Spacing + 4, 
  278.                     x + w, y + h DIV 2 + j * Spacing + 4) ;
  279.              end ;
  280.        Show_Mouse ;
  281.      end ;
  282. { *************************************************************************
  283.      DrawADesign will draw the Design screen for output.
  284. ************************************************************************* }
  285.   procedure DrawDesign ;
  286.  
  287.      begin
  288.        DrawDZ_In ;
  289.        DrawDZ_Out ;
  290.      end ;
  291.  
  292. { *************************************************************************
  293.      DrawAField will draw the ScrPtr Record, CurRec.  The location is 
  294.      determined by the values CurRec^.X and CurRec^.Y.
  295. ************************************************************************* }
  296.   procedure DrawAField( CurRec : ScrPtr ) ;
  297.  
  298.      begin
  299.        Hide_Mouse ;
  300.        FormatStr := Concat(CurRec^.LabelStr, '  ') ;
  301.        Draw_String(x + CurRec^.X * 8, y + CurRec^.Y * Spacing,
  302.                        FormatStr ) ;
  303.        Paint_Frame(x + (CurRec^.X + Length(CurRec^.LabelStr) + 2) * 8 + 4, 
  304.                    y + (CurRec^.Y - 1) * Spacing + (4 * Resolution), 
  305.                    CurRec^.Size * 8 ) ;
  306.        Show_Mouse ;
  307.      end ;
  308.      
  309. { *************************************************************************
  310.      DrawScreen will update the entire screen, redrawing all labels.
  311. ************************************************************************* }
  312.   procedure DrawScreen( CurRec : ScrPtr ) ;
  313.  
  314.      begin
  315.        Hide_Mouse ;
  316.        Paint_Color(White) ;
  317.        Paint_Rect(x,y,w,h) ;
  318.  
  319.        if Mode = 5 then
  320.           DrawDesign
  321.        else
  322.           While CurRec <> nil do
  323.              begin
  324.                DrawAField(CurRec) ;
  325.                CurRec := CurRec^.Next ;
  326.              end ;
  327.        Show_Mouse ;
  328.      end ;
  329.  
  330. { *************************************************************************
  331.      Do_Redraw will redraw the screen to GEM specifications.
  332. ************************************************************************* }
  333.   procedure Do_Redraw(msg : Message_Buffer ) ;
  334.  
  335.     var
  336.        x0, y0,
  337.        w0, h0 : short_integer;
  338.  
  339.      begin
  340.        Hide_Mouse ;
  341.        Begin_Update;
  342.  
  343.        First_Rect(msg[3], x0, y0, w0, h0);
  344.        while (w0 <> 0) OR (h0 <>0) do
  345.           begin
  346.             if Rect_Intersect(msg[4], msg[5], msg[6], msg[7],
  347.                               x0, y0, w0, h0) then
  348.                begin
  349.                  Set_Clip(x0,y0,w0,h0);
  350.                  DrawScreen( S_FirstRec[ScrNum] );
  351.                  if (D_CurrentRec[DataNum] <> nil) AND (Mode <> 5) then
  352.                     DrawRecord(D_CurrentRec[DataNum]) ;
  353.                end ;
  354.             Next_Rect(msg[3], x0, y0, w0, h0);
  355.           end;
  356.  
  357.        if Mode = 5 then
  358.           NewCursor(Report)
  359.        else
  360.           NewCursor(ScrNum) ;
  361.        End_Update;
  362.        Show_Mouse ;
  363.      end;
  364.  
  365.  
  366. BEGIN
  367. END .
  368.  
  369.